home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / pgm_tool / udtdem / sdk / rqproc / rqproc.h < prev    next >
Text File  |  1994-05-13  |  751b  |  25 lines

  1.  
  2. /* Constantes
  3.  */
  4. #define RQP_OK                          1
  5. #define RQP_MEMORY                      2
  6. #define RQP_BADFORMAT                   3
  7. #define RQP_UNKNOWN                     4
  8. #define RQP_NOMOREUSERS                 5
  9. #define RQP_CANNOTLOAD            6
  10.  
  11. typedef int HCLIENT;
  12.  
  13. /* Fonctions publiques
  14.  */
  15. int RQProcRegisterNewClient ( HCLIENT, const IPX_ADDR *, WORD, const char * );
  16. int RQProcClientTermination ( HCLIENT );
  17. int RQProcCriticalClientTermination ( HCLIENT );
  18. int RQProcGetDescriptionText ( HCLIENT, const char *, char *, int );
  19. int RQProcProcessRequest ( HCLIENT, char **, LONG * );
  20. int RQProcLoadTransporter ( char *, char * );
  21. void RQProcDownTransporter ( void );
  22. int RQProcGetNumberOfConnections ( void );
  23.  
  24.  
  25.